home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 1998 May / PCPlus May 1998=disk A.iso / full / CBUILDER / SAMS / SAMPLES / CHAP13 / SURF00.H < prev   
Encoding:
C/C++ Source or Header  |  1997-02-12  |  1.3 KB  |  38 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef surf00H
  3. #define surf00H
  4. //---------------------------------------------------------------------------
  5. #include <vcl\Classes.hpp>
  6. #include <vcl\Controls.hpp>
  7. #include <vcl\StdCtrls.hpp>
  8. #include <vcl\Forms.hpp>
  9. #include <vcl\ComCtrls.hpp>
  10. #include <vcl\ExtCtrls.hpp>
  11. #include <vcl\Buttons.hpp>
  12. #include <vcl\ISP.hpp>
  13. #include <vcl\OleCtrls.hpp>
  14. //---------------------------------------------------------------------------
  15. class TForm1 : public TForm
  16. {
  17. __published:    // IDE-managed Components
  18.     TTabControl *tcURL;
  19.     TPanel *Panel1;
  20.     TPanel *Panel2;
  21.     TBitBtn *bbGo;
  22.     TBitBtn *bbHome;
  23.     TComboBox *cbURL;
  24.     THTML *htBrowser;
  25.     void __fastcall tcURLChange(TObject *Sender);
  26.     void __fastcall htBrowserBeginRetrieval(TObject *Sender);
  27.     void __fastcall htBrowserEndRetrieval(TObject *Sender);
  28.     void __fastcall bbGoClick(TObject *Sender);
  29.     void __fastcall bbHomeClick(TObject *Sender);
  30. private:    // User declarations
  31. public:        // User declarations
  32.     virtual __fastcall TForm1(TComponent* Owner);
  33. };
  34. //---------------------------------------------------------------------------
  35. extern TForm1 *Form1;
  36. //---------------------------------------------------------------------------
  37. #endif
  38.